home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / UResourceParser / TMPLParser ƒ / TMPLParser.h < prev    next >
Encoding:
Text File  |  1996-10-14  |  724 b   |  29 lines  |  [TEXT/CWIE]

  1. // =================================================================================
  2. //    Copyright © 1996 Michael Schürig
  3. //
  4. //    You may copy this file, rip it apart or use it in derivative work as long
  5. //    as you don't change the original file and this message remains intact.
  6. // =================================================================================
  7.  
  8. #include <ansi_prefix.mac.h>
  9. #include <iostream>
  10. #include <string>
  11. #include "UResourceParser.h"
  12.  
  13. class TMPLParser : public UResourceParser {
  14.  
  15. public:
  16.     
  17.                     TMPLParser(const Handle inResH) throw();
  18.     virtual            ~TMPLParser() throw();
  19.     
  20.     virtual void    Parse();
  21.     
  22.     void    WriteParser(const string &inParserName, ostream &os = cout);
  23.  
  24. protected:
  25.     
  26.     Str255    mTMPLName;
  27.  
  28. };
  29.